// page fx
jQuery(document).ready(function($){

//Screen resolution check

if (viewportwidth<=1152){
	$("link:eq(0)").eq(0).attr("href","css/3vcoresmall.css");
	$("link:eq(2)").eq(0).attr("href","css/3vcorelt8small.css");
	//Resize images to minus 30%
	$('li[class=home] img').attr('src', 'images/1024/button_home.png');
	$('li[class=whois] img').attr('src', 'images/1024/button_whois.png');
	$('li[class=webdesign] img').attr('src', 'images/1024/button_webdesign.png');
	$('li[class=ecommerce] img').attr('src', 'images/1024/button_ecommerce.png');
	$('li[class=cms] img').attr('src', 'images/1024/button_cms.png');
	$('img[alt=terug]').attr('src', 'images/1024/terug.png');
	$('img[alt=verder]').attr('src', 'images/1024/verder.png');
	$('img[alt="contact"]').attr('src', 'images/1024/contact.png');
	}		
	

/*Page image fade ins*/
$("article").hide();
$(".fadeIt").hide();
$("#footerQuote").hide();
$("article").slideDown(400),$(".fadeIt").fadeIn(2000);
$("#footerQuote").fadeIn(1000);



/*Fancybox FX*/
$("a.iframe").fancybox({
		'titleShow'     : true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'easingIn'      : 'easeOutBack',
		'easingOut'     : 'easeInBack',
		'width'			:   995,
		'height'		:   550,			
		'overlayShow'	:	false
	});
	
/*Table zebra stripes*/
$("tr:even").css("background","#a1a1a1");

});


