jQuery(document).ready(function () {   
    
    
    
    //Load Default content
   	jQuery('#swap').load('locations/phil.php #content');
		
	jQuery('#contact_swap').load('locations/phil.php #contact');   

    
    
    
    
    
    
    
    
    jQuery('#loc_list').css('display', 'none');
    
    jQuery('#locationToggle').click(function(){
    
    
    	jQuery('#loc_list').toggle();
    
    });
    
    
    jQuery('.loc').click( function(){
    	
    	loc = jQuery(this).attr('id');
    	locname = jQuery(this).attr('title');
    	
    	jQuery('#loc_name').html(locname);
    	
    	
    	 jQuery('#swap').load('locations/'+ loc +'.php #content', function() {
    		jQuery('#loc_list').toggle();
    		jQuery(this).hide().fadeIn('slow');
		});
		
		jQuery('#contact_swap').load('locations/'+ loc +'.php #contact', function(){
			jQuery(this).hide().fadeIn('slow');
		
		});   
    
    
    
    });
    
    
    
    
if ((screen.width>=1024) && (screen.height>=768)) {
//larger	
	$("link[rel=stylesheet]#main-style").attr({href : "css/layout.css"});
} else  {
//smaller
	$("link[rel=stylesheet]#main-style").attr({href : "css/layout-small.css"});
}
    
    
    
    

    
    
    
    

});
