/*-------------------------------------------------------------------------*/
// Page Load Functions
/*-------------------------------------------------------------------------*/	
$(document).ready(function(){	
	// Form Functions
	if ($("#make").length) { getModels(); }
	
	// ---------------------------------------------------------
	// eboshare
	// ---------------------------------------------------------	
	jQuery('#eboshareHeader').eboshare({
	  iconsDir: 'javascripts/eboshare/icons/',  
	  position: 'bottom'
	});
	
		
	$("a[href^='http:']:not([href*='" + window.location.host + "'][target='_blank'])").live('click', function(){
		$(this).attr('target','_blank');
	});
});	

/*-------------------------------------------------------------------------*/
// Ajax Functions
/*-------------------------------------------------------------------------*/	

function showhide(divid, state){
	document.getElementById(divid).style.display=state
}

function swapPhoto(placeholder,url){
	$("#"+placeholder).attr("src",url);
}

