/* *  * Part of article How to detect screen size and apply a CSS style * http://www.ilovecolors.com.ar/detect-screen-size-css-style/ * */$(document).ready(function() {	if ((screen.width==1024) && (screen.height==768))	{		 $(".tab ul.login").css("right","-290px");	}	else if ((screen.width==1600) && (screen.height==900))	{		$(".tab ul.login").css("right","0px");	}	else if ((screen.width==1280) && (screen.height==720))	{		$(".tab ul.login").css("right","-150px");	}	else if ((screen.width==800) && (screen.height==600))	{		$(".tab ul.login").css("right","-490px");	}	else	{		}});
