function checkall()				
{
	$(":checkbox").attr('checked','checked' );
}	

function uncheckall()				
{
	$(":checkbox").attr('checked','' );
}	


$(document).ready(function()
{
	//all the javascript specific things start hidden, if we have javascript it unhides them
	unhide();
	
	//$(".thumb").hide();
	//$(".thumb").slideDown("slow");
	//$(".thumb").fadeIn("slow");
		
	//setup thumbnails
	$(".thumb").bind("mouseenter",  thumb_mouseenter );
	$(".thumb").bind("mouseleave",  thumb_mouseleave );

	//setup jump box
	$("#jump_to").bind("change",  jump_to );
});

//
function unhide()
{
	$("#jump_to").show();
	
}

function jump_to()
{
	var url;
	url = 'plug.php?e=medialibrary&category=' + $("#jump_to").val();
	location.href = url;
}

function thumb_mouseenter()				
{
	$(this).toggleClass("mouseover");
}	

function thumb_mouseleave()				
{
	$(this).toggleClass("mouseover");
}

	
