$(document).ready(function() {

	if ((screen.width>=1024) && (screen.height>=768))
	{
		alert('Screen size: 1024x768 or larger');
		
	}
	else
	{
		alert('Screen size: less than 1024x768, 800x600 maybe?');
		
	}
});



