
$(document).ready(function(){
$(".gallery_sale").lightBox();

$(".portfolio_preview").mouseover(function () {
	$(this).fadeTo("slow", 1.0);
});

$(".portfolio_preview").mouseout(function () {
	$(this).fadeTo("slow", 0.33);
});

$(".preview").click(function () {
	$(".last_project_big").fadeTo("slow", 1.0);
});
 


});

