$(document).ready(function(){
	
	// external links
	$("a[@rel='external']").click(function() {
		return !window.open($(this).attr("href"));
	});
	
	// fade in messages
	/*$('.success').hide();
	$('.success').fadeIn(500);
	$('#errorMsg p').hide();
	$('#errorMsg p').fadeIn(500);*/
	
	
	// products listing hover
	$("#products-listing li").hover(
		function () {
			$("img", this).css( {borderColor:"#454545"} );
			$(this).css( {backgroundColor:"#181a1a"} );
		}, 
		function () {
			$("img", this).css( {borderColor:"#212121"} );
			$(this).css( {backgroundColor:"transparent"} );
		}
	);
	
	
	// highlight
	//$(".highlight").highlightFade({start:'#f8d961', speed:3000});
	
});
