jQuery(document).ready(function($) {

// window.onload = function(){ alert("onload test"); }

/* 	GALLERY SLIDESHOW - INDEX
/* ----------------------------------------- */

	$.supersized({
		slides  :  	[ {image : 'http://cag.airboxmedia.com/img/bg.jpg', title : 'Image Credit: Maria Kazvan'} ]
	});
	

/* 	HIGHLIGHT LINKS ON MOUSEOVER
/* ----------------------------------------- */
	
	$("li.box").mouseover(function(){
		$("ul#brands li a", this).css( {color: "#ffffff"} );
	});
	
	$("li.box").mouseout(function(){
		$("ul#brands li a", this).css( {color: "#2998b0"} );
	});

	
});
