$(document).ready(function(){
	$('.pic-sel').each(function(){
		$('a', this).lightBox({fixedNavigation:true});
	})

	$(".pic").hover(
		function(){ $(this).animate({opacity: 0.7}) },
		function(){ $(this).animate({opacity: 1}) }
	)
});

var orderMess = function(){
	var curr = { w: $(document).width(), h: $(document).height()};
	var sY = window.scrollY ? window.scrollY : (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop);

	$("body").append('<div id="message_box"><img src="/img/order.png" alt="Order" border="0" /></div>');
	$("body").append('<div id="black"></div>');
	
	$("#message_box").click(function(){
		$(this).animate({
			top: '600px', opacity: 'hide'
		}, "slow");
		$("#black").fadeTo("fast", 0);
		$("#black").remove();
		$('select').show();
	});
	$('select').hide();
	$("#black").css({width: curr.w + 'px', height: curr.h + 'px'}).fadeTo("fast", 0.6);
	$("#message_box").animate({
		top: '150px', opacity: 'show'
	}, "slow");		
} //);