// JavaScript Document
function flashMovie (swf, w, h, vars)
{
	var d = document;
	d.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='" + w + "' height='" + h + "'>");		
   d.write("<param name='movie' value='" + swf + "' />");
   d.write("<param name='quality' value='high' />");
   d.write("<embed src='" + swf + "' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + w + "' height='" + h + "'></embed></object>");

}
var clientW = document.documentElement.clientWidth;
var d = document;
var s = "<style type='text/css'>";
var e = "</style>";
if (clientW <= 1023){ 
	d.write(s + "#tabs li { width: 12%; }" + e);
	d.write(s + "* html #tabs li { width: 10.8%; }" + e);
} 
if (clientW >= 1024 && clientW < 1281)
{
	
	d.write(s + "* html #tabs li { width: 11.2%; }" + e);
}
if(clientW > 1280) 
{
	d.write(s + "* html #tabs li { width: 11.7%; }" + e);
}

$(document).ready(function() {
	//$("body").ScrollToAnchors(6000);
});


