$(document).ready(function()
{

	$('.sp-kill').hide();
	$('.display-none').hide();
	$('.sp-kill input').val('nospam');

	$('.jumplinks li a').click(function()
	{
		id = $(this).attr('rel');
		$(this).parents('.jumplinks').children('li').removeClass('selected');
		$(this).parents('.box').children('.subbox').hide();
		
		$('#'+id).show();
		$(this).parent().addClass('selected');
		return false;
	});

	$('.subbox p.title a').mouseover(function() 
	{

		$('a.img',this.parentNode.parentNode).removeClass('img-active');
		$(this.parentNode).next().addClass('img-active');
	});
	
	$('.subbox .play-ico').click(function() 
	{	//alert($('a.img',this.parentNode).attr('href'));
		document.location.href = $('a.img-active',this.parentNode).attr('href');
	});
});
