function validateEmail(email) {
	return /^[a-z0-9_\-]+(\.[_a-z0-9\-]+)*@([_a-z0-9\-]+\.)+([a-z]{2}|aero|arpa|biz|com|coop|edu|gov|info|int|jobs|mil|museum|name|nato|net|org|pro|travel)$/.test(email)
}

function fbClose(){
	parent.$.fancybox.close();
}
function fbCloseRedirect(){
	parent.$.fancybox.close();
	top.location.reload(true);
}

$(function(){

	$('#sortby').change(function(){
		$('#sortby').parents('form').submit();
	});

	$('#addButton').click(function(){
		$('#addToCart').submit();
		return false;
	});

	$('#addToCart').submit(function(){
		var val = $('#color').val();
		if(val==0){
			$('#scf').show();
			return false;
		}else{
			return true;
		}
	});
	
	$("#loginLB,a.loginLB").fancybox({
		 'width' : 365,
		 'height' : 475,
		 'padding' :0,
		 'margin':0,
		 'autoScale' : false,
		 'transitionIn' : 'none',
		 'transitionOut' : 'none',
		 'type' : 'iframe',
		 'centerOnScroll' : true,
		 'titleShow' : false,
		 'showCloseButton' : false,
		 'scrolling': 'no'
	 });

	$("a.fillForm").fancybox({
		 'width' : 365,
		 'height' : 369,
		 'padding' :0,
		 'margin':0,
		 'autoScale' : true,
		 'transitionIn' : 'none',
		 'transitionOut' : 'none',
		 'type' : 'iframe',
		 'centerOnScroll' : true,
		 'titleShow' : false,
		 'showCloseButton' : false,
		 'scrolling': 'no'
	 });

	$("#ds_step1,#expertiseForm").fancybox({
		'width'				: 765,
		'height'			: 453,
		'padding'			:0,
		'margin'			:0,
		'centerOnScroll'	: true,
		'hideOnOverlayClick': false,
		'titleShow'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'showCloseButton'	: false,
		'scrolling': 'no'
	});
	 

	$('a.close').click(function(){
		parent.$.fancybox.close();
		return false;
	});

	$('.listText a').click(function(){
		$(this).attr('target', '_blank');
	});

	$('#breadCrumb a.print').click(function(){
		window.print();
	});

});

