$(document).ready( function () {
	$('.pods div').click( function () {
		window.location = $(this).find('a').attr('href');
	})
	
	$('.acordion .title').click( function () {
		if($(this).next().is(':visible')) {
			$(this).next().slideUp();
			$(this).removeClass('down');
		}else{
			$(this).next().slideDown();
			$(this).addClass('down');
		}
	});
	if($.isFunction($.fancybox)){
		$('a.fancybox').fancybox();
	}
	
	$('a.fancybox').hover( function() {
		$('.fancyTitle').remove();
		if($(this).find('img').attr('title')){
			$(this).find('img').data("title", $(this).find('img').attr("title")).removeAttr("title");
		}
		if($(this).find('img').data("title")){
			$(this).append('<div class="fancyTitle">' + $(this).find('img').data("title") + '<br><small>(click on image to view more)</small></div>');
			correctionWidth = ($('.fancyTitle').width() - $(this).width())/2;
			$('.fancyTitle').css({"left" : ($(this).find('img').offset().left - correctionWidth), "top" : ($(this).find('img').offset().top + $(this).find('img').height() - $(window).scrollTop()) })
			$('.fancyTitle').stop().fadeIn('300');
		}
	}, function() {
		$('.fancyTitle').stop().fadeOut('200', function() {
			//$('.fancyTitle').remove();
		});
	} )
	
} );
