$(document).ready(function () {
	
	$('.iframe').live('click', function(e) {
		e.preventDefault();
		
		var attrClass = String($(this).attr('class'));
		var attrHref = String($(this).attr('href'));
		var explode = attrClass.split('_');
		var width = parseInt(explode[1]);
		var height = parseInt(explode[2]);
		
		var selector = $(this).index();
		
		$.fancybox({
			'href' : attrHref,
			'type' : 'iframe',
			'width' : width,
			'height': height,
			'scrolling': 'no'
		});
	});
	
	$('div.home_block').mouseenter(function() {$(this).find('div.hover_content').show();});
	
	$('div.hover_content').mouseleave(function() {$(this).hide();});
	
});
