$(function(){
	// for lightbox
	if ($("a[rel^='prettyPhoto']").length) {
			$(document).ready(function() {
				// prettyPhoto
				$("a[rel^='prettyPhoto']").prettyPhoto({theme:'facebook'});
			});
	}
	$('.prettyPhoto').hover(function(){
			$(this).find('.img2').stop().animate({opacity:'0'});
		}, function(){
			$(this).find('.img2').stop().animate({opacity:'1'});
		}
	)
	//text shadow
	if ($.browser.msie) {
		$('h2').textShadow('0px 0px 4px #333');
		$('#menu li a > em').textShadow('0px 0px 4px #fff');
		
	};
	// button hover
	$('.button b').css({opacity:'0'});
	$('.button').hover(function(){
			$(this).find('b').stop().animate({opacity:'1'},400)
		}, function(){
			$(this).find('b').stop().animate({opacity:'0'},400)
		}
	)
});

