$(document).ready(function(){
$("#main-content").show();
var so = new SWFObject("homepage.swf", "homepageswf", "586", "496", "8", "#dddddd");
so.addParam("quality", "best");
so.addParam("menu", "false");
so.addVariable("allowScriptAccess", "always");
so.addParam("scale", "noscale");
so.addVariable("xml", "homeflashxml.aspx");
so.addVariable("styles", "css/newhome.css");
so.addVariable("font", "swf/fonts.swf");
so.addVariable("asset", "swf/assets.swf");
so.addParam("wmode","transparent");
so.write("flashContent");

var lh =  $('#inner_left').innerHeight();
var rh =  $('#inner_right').innerHeight();
var ulh = $('#services').innerHeight();
$('li',$('#services')).css('height',ulh+'px');
if(lh > rh){
    $('#main-content').css('height',(lh+10)+'px');
    $('#inner_right').css('height',lh+'px');
}else{
    $('#main-content').css('height',rh+'px');
    $('#inner_left').css('height',rh+'px');
}
});

var expand = 0;  
function doexpand(){
if(expand == 0){
      $('#homepageswf').attr('width','960px');//.animate({width:"960px"},1500);
      expand = 1;
      return;
  }else{
      $('#homepageswf').attr('width','596px');//.animate({width:"595px"},1500);
      expand = 0;
      return;
  }
}
$("#services li:first").click(function(){
    doexpand();
    return false;
});					   
