if(typeof($) != 'undefined')
{
    $(document).ready(function(){
        
        $('.dropemNavbar').dropem();
        
	    var demo2args = {
			navItemSelector: '.navItem',
			dropdownSelector: '.navDropdown',
			dropdownShowDelay: 10,
			dropdownHideDelay: 2000
		};
	
		$('.dropemNavbar2').dropem(demo2args);
        
    }); 
}


$(document).ready(function(){
var $tabs = $('#tabs').tabs(); // first tab selected

$('#president_link').click(function() { // bind click event to link
    $tabs.tabs('select', 1); // switch to second tab
    return true;
});

$('#history_link').click(function() { // bind click event to link
    $tabs.tabs('select', 2); // switch to third
    return true;
});

$('#team_link').click(function() { // bind click event to link
    $tabs.tabs('select', 3); // switch to fourth
    return true;
});

$('#service_link').click(function() { // bind click event to link
    $tabs.tabs('select', 0); // switch to first tab
    return true;
});

$('#warranty_link').click(function() { // bind click event to link
    $tabs.tabs('select', 1); // switch to second tab
    return true;
});
$('iframe').each(function() {
    var fixed_src = $(this).attr('src') + '&amp;wmode=transparent';
    $(this).attr('src', fixed_src);
});
}); 


