$(document).ready(function() {

    $("#project_accordion").accordion();
	
	//if a project is current make sure that area of accordion is expanded
	$("#project_accordion div.current").each(function(){
		var raw_id = $(this).parent().attr('id');
		var link_id = raw_id.replace(/_content/,'');
		$("#"+link_id).click();												  
	});
	
    var flashvars = {}
    var params = {
        base: ".",
        allowfullscreen: "false"
    }
    var attributes = {}
    swfobject.embedSWF("/themes/simplisite09/swfs/featured_projects.swf", "featured_projects", "700", "360", "9.0.0", false, flashvars, params, attributes);

    $(".partner_box").colorbox({width:"510px"});
    $(".client_box").colorbox({width:"510px"});
    $(".service_box").colorbox({width:"510px"});
    
    $('#masthead_toggle').click(function() {
        var mh = $('#masthead_inner');
        if (mh.height() == 200) {
            mh.animate({ height: 360 },800);
        } else {
            mh.animate({ height: 200 },400);
        }
    });
    
});