$(document).ready(function(){		
	// Safe Mailto's
	if ($('.email').length > 0){
		$.getScript('js/jquery.mailto.js',function(){ 
			// Execute this function once the plugin is loaded
			$('.email').mailto();
		});
	}
	// Focus & Blur
	if ($('.valueFx').length > 0) {
		$.getScript('../js/jquery.valueFx.js',function(){ 
			$('.valueFx').valueFx();
		});
	}
	// Thumbnail Preview
	if ($('a.tooltip').length > 0) {
		tooltip();
	}
	// Forms > SHow\Hide States
	$('#if-country-us').hide();
	$('select#country').change(function(){
		if ($('option:selected', this).val() == 'United States') {
			$('#if-country-us').fadeIn();
		} else {
			$('#if-country-us').fadeOut();
		}
	});
});