// JavaScript Document
function preloadImages(pathsArray) {
    $(pathsArray).each(function(){
        $('<img />')[0].src = this;
    });
}

$(function(){ 
	$('.formulate').eFormulate();
	
	// Open external and document links in new window
	$('a[href*=www],a[href*=http],a[href*=pdf]').not('a[href*='+location.hostname+']').attr('target','_blank');
	
	// Setup simple page markers
	var bodyID =  $('body').attr('id');
	$('#site_nav a').each(function(){
		var hrefVal = $(this).attr('href');
		if(hrefVal.search(bodyID) != -1 || (bodyID == "home" && hrefVal == "/")) $(this).addClass('marker');
	});
	
	// Setup clickable block elements [extending a link]
	$('.click_block').css({cursor:'pointer'}).click(function(e){ e.preventDefault(); var first_link = $(this).find('a:first'); window.location = first_link.attr('href'); });
	
	//$('#site_nav .drop_menu').load('/products.php .editor_content a');
});

$(window).load(function(){  
	// Drop Menu
	$('.eMenu').eMenu();
});
