/*-----------------------------------------------------------------------------------------------------------------------
  [BRICKS JAVASCRIPT]
  
  Project:		Northland College
  URL:			northlandcollege.edu
  Version:		1.0
  Last Change:	03/19/09 [ notes: ]
-----------------------------------------------------------------------------------------------------------------------*/	

// Start jQuery

$(document).ready(function() {

/* Work Image - Hover qualities ***********************************************/
    
	$("div.brickModule div.brickSM:nth-child(1)").addClass("top");
	$("div.brickModule div.brickSM:nth-child(2)").addClass("top");
	$("div.brickModule div.brickSM:nth-child(3)").addClass("top");
	$("div.brickModule div.brickSM:nth-child(4)").addClass("top");
	
	$("div.brickSM img.hovered").hide();
	$("div.brickSM").hover(function() {
		$(this).find('img').fadeIn(300);
	}, function() {
		$(this).find('img.hovered').fadeOut(300);
	});
	
	$("div.brickSM").click(function(){
    	window.location=$(this).find("a").attr("href");
    	return false;
	});
	
	
	
	$("div.brickModule div.brickLG:nth-child(1)").addClass("top");
	$("div.brickModule div.brickLG:nth-child(2)").addClass("top");
	$("div.brickModule div.brickLG:nth-child(3)").addClass("top");
	$("div.brickModule div.brickLG:nth-child(4)").addClass("top");
	
	$("div.brickLG img.hovered").hide();
	$("div.brickLG").hover(function() {
		$(this).find('img').fadeIn(400);
	}, function() {
		$(this).find('img.hovered').fadeOut(300);
	});
	
	$("div.brickLG").click(function(){
    	window.location=$(this).find("a").attr("href");
    	return false;
	});
	
}); // End jQuery