var $j = jQuery.noConflict();


	// When the document loads do everything inside here ...
	$j(document).ready(function(){
		// When a link is clicked
		$j("a.tab").click(function () {
			// slide this content down
			var content_show = $j(this).attr("title");
			$j("#"+content_show).slideDown();
		  
		});
		$j("a.tab2").click(function () {
			// slide this content up
			var content_show = $j(this).attr("title");
			$j("#"+content_show).hide();
		  
		});
		$j(function() {
   			$j('.hover_content').css('display','none');
   
   			$j('.sitepreview_item').hover(function() {
      
      			$j('.hover_content',this).fadeIn();
            
      			}, function() { $j('.hover_content').fadeOut();
   			});
		});
	});



