/*
 * 
 * Part of article How to detect screen size and apply a CSS style
 * http://www.ilovecolors.com.ar/detect-screen-size-css-style/
 *
 */
if ((screen.width>=1680) && (screen.height>=1050))
	/*if ((screen.width>=1024) && (screen.height>=768))*/
	{
		/*alert('Screen size: 1024x768 or larger');*/
		$("link[rel=stylesheet]:not(:first)").attr({href : "css/gcd_big.css"});
	}
	else
	{
		/*alert('Screen size: less than 1024x768, 800x600 maybe?');*/
		$("link[rel=stylesheet]:not(:first)").attr({href : "css/gcd_small.css"});
	}
$(document).ready(function() {

	
	$("body").fadeIn();
});


