	
/*////////////////////////////////////////////////////////////////////////////////////////////////
//                                         ///////////////////////////////////////////////////////
//    Joe's Real BBQ                       ///////////////////////////////////////////////////////
//                                         ///////////////////////////////////////////////////////
//    Website: www.joesrealbbq.com         ///////////////////////////////////////////////////////
//    Date:    02/06/08                    ///////////////////////////////////////////////////////
//                                         ///////////////////////////////////////////////////////
//    Coded by Isaac Weinhausen            ///////////////////////////////////////////////////////
//    http://isaacw.com                    ///////////////////////////////////////////////////////
//                                         ///////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////*/

	
	// Functions
	function setMouseEvents(){
	
		$("div.section-preview")
			.hover(function(){
				$(this)
					.find("span.description")
						.toggleClass("section-preview-description-over");
			},
			function(){
				$(this)
					.find("span.description")
						.toggleClass("section-preview-description-over");
			})
			.click(function(){
				var url = $(this).find("a").attr("href");
				if (url != "" && url != "#" && url != undefined) {
					window.location = url;
				}
			});
		
	}
	
	function setupJqirEls(){
	
		$(".jqir").jQIR("png", "images/");
		
	}
	

	// Instantiation
	$(function(){
  		// Document is ready...
  		
		setMouseEvents();
		setupJqirEls();
		
	});
	
	