$(function() {
	$('.fbox').fancybox();
	$('#inline').fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'padding'		:	0
	});
	$('a.iframe').fancybox({
		'type': 'iframe',
		'autoScale': false,
		'width': '100%',
		'height': '100%'
	});
	$('#followUsOn').html('').css('height','75px');
	
	$('#searchInput').val('Search...');
	$('#searchInput').focus(function(){
		if($(this).val()=='Search...'){
			$(this).val('');
		}
	});
	$('#searchInput').blur(function(){
		if($(this).val()==''){
			$(this).val('Search...');
		}
	});
	$('.topnavButton').hover(
		function(){	$(this).addClass('topnavButtonHover'); },
		function(){	$(this).removeClass('topnavButtonHover'); }
	);
	$('.topnavButton').click(function(){
		var url = $(this).children('a').attr('href');
		if(url!='#loginForm'){
			window.location=url;
		}else{
			$(this).children('a').trigger('click');
		}
	});
});
