$(document).ready(function() {
	$('.whiteCover').height($('.roundWindow').height());
	$('.rightBorder').height($('.roundWindow').height());
	
	
	$('input[title]').each(function() {
		if($(this).val() === '') {
			$(this).val($(this).attr('title'));	
		}
		
		$(this).focus(function() {
			if($(this).val() == $(this).attr('title')) {
				$(this).val('');	
			}
		});
		$(this).blur(function() {
			if($(this).val() === '') {
				$(this).val($(this).attr('title'));	
			}
		});
	});
	
	
	$('.nwin').popupWindow({ 
		centerScreen:1,
		height:720, 
		width:830
	}); 
	
	var flashvars = {
		name1: "hello",
		name2: "world",
		name3: "foobar"
	};
	var params = {
		wmode:"transparent"
	};
	var attributes = {
		id: "myDynamicContent",
		name: "myDynamicContent"
	};
	
	swfobject.embedSWF("http://www.vitax.co.uk/wp-content/uploads/2010/01/product.swf", "frontflash", "300", "521", "9.0.0","expressInstall.swf", flashvars, params, attributes);
	
});

	

