
jQuery(document).ready(function($){
	
	$("#nav").superfish({
		hoverClass: 	'hover', 
		delay: 			0,
		speed: 			0,
		animation: 		{opacity:'show'},
		autoArrows: 	false
	});
	
	var searchValue = $('#s').val();
	
	$('#s').focus(function() {
		$('#s').val('');
	}).blur(function() {
		$('#s').val(searchValue);
	});
	
	$('#frontpage_image').cycle({ 
        fx: 'fade',
		speed: 2500, 
		timeout: 7000,
		sync: true
	});
	
	$('a[rel="external"]').click(function(event) {
		window.open( $(this).attr('href') );
		event.preventDefault();
	});
	
	$('ul.featured').masonry({ 
		columnWidth: 187
	});
	
});