/* Author:

*/

$(function() {
	$('.hp_box').hover(
		function(e) {
			$('#'+$(this).attr('figure')+'_figure')[0].mouseOver();
		},
		function(e) {
			$('#'+$(this).attr('figure')+'_figure')[0].mouseOut();
		}
	);
	$('.hp_box, .figure').mousedown(function(e) {
		var targ = $(e.target);
		if (targ.is('a') || targ.parent().is('a')) {
			return false;
		}
		switch($(this).attr('id')) {
			case 'funmoods_box':
				window.location = "http://funmoods.com";
				break;
			case 'greetingmoods_box':
				window.location = "http://greetingmoods.com";
				break;
			case 'safemoods_box':
				window.location = "http://home.funmoods.com/safemoods";
				break;
		}
	});
	$('.more_videos li').click(function() {
		$('#main_video').attr('src', ($(this).attr('video_url')));
	});

});
function openLegal(page)
{
	if (typeof page == 'object') {
		try {
			page = page.attr('href');
		} catch(e) {}
	}
	window.open(page,null,
	'height=600,width=500,status=no,toolbar=no,addresbar=no,menubar=no,location=no,scrollbars=yes');
}	 


