function getNameBrowser() {
 var ua = navigator.userAgent.toLowerCase();
 if (ua.indexOf("msie") != -1 && ua.indexOf("opera") == -1 && ua.indexOf("webtv") == -1) {
   return "ie"
 }
 if (ua.indexOf("opera") != -1) {
   return "opera"
 }
 if (ua.indexOf("chrome") != -1) {
   return "chrome";
 }
 if (ua.indexOf("firefox") != -1) {
   return "firefox";
 }	 
 return false;
}	

$(document).ready(function(){
	if (screen.availWidth < 1030){
		$('#main_table').css('width', '1024px');			
		$('#swf').css('left', '15px');
	}

	switch(getNameBrowser())
	{
		case 'ie':
		case 'opera':
		case 'chrome':
			$('#swf').css('top', '168px');
			break;
	}
});
