// JavaScript Document
$(document).ready(function() {

$("#strategy").hide(); 

 $("#container").mouseenter(function() {
					
						$("#strategy").slideDown("fast");
	
								});
 $("#container").mouseleave(function() {
					
						$("#strategy").slideUp("fast");
	
								});

$(".gallery a[rel^='prettyPhoto']").prettyPhoto({theme:'facebook'});
 
				

});