$(document).ready(function() {
	var C = {
		overlayOpacity : 0.8
	};
	$(".gallery a").fancybox(C);
	$(".main-gallery a").fancybox(C);
	$('a.media').media(C);
	// CLEAR INPUT FIELD
	$('.clear_input').each(function() {
		if($(this).val()=='') {
			$(this).val($(this).attr('alt'));
		}
		$(this).focus(function() {
				if($(this).val()==$(this).attr('alt')) {
					$(this).val('');
				}
			})
			.blur(function() {
				if(!$(this).val()) {
					$(this).val($(this).attr('alt'));
				}
			});
	});	
	
	$('.newsItem').click(function() {
		window.location.href = $(this).find('a').attr('href');
	}).css('cursor','pointer');
});


