/**
* Function file <Bereshit>
* @author EGStudio
*/ 

$(document).ready(function() 						 
{  
		$("a[rel='contactbtn']").click(function() {
		$("#contact").slideToggle();
		return false;
   });

    $('img.reflect').each(function(){
			$(this).load( 
				function(){ 
					$(this).reflect({height: 0.3, opacity: 0.3} );
				} 
			);
		});

	$("a[rel='colorbox']").colorbox();

	var li = $("ul.blocks > li").size();
	$("ul.blocks").css("width", 210 * li);

	var originalSizes = new Array();
	$('#pane5').jScrollHorizontalPane({scrollbarHeight:19, scrollbarMargin:0, showArrows:true, arrowSize:20,wheelSpeed:100 });
	
});
