jQuery.noConflict();

jQuery(document).ready(function(){ 
	//$(".clip-list-wide > li").click( function() { $(this).addClass("over") } );
	
	//background hover effect on clip-lists, hover had some problems with showing urls in statusbar
	/*
	$(".clip-list-wide > li").hover(function(){
  	$(this).addClass("over");
	},function(){
		$(this).removeClass("over");
	});
	*/
	
	//background mouseover/mouseout effect on clip-lists,
	/*
	jQuery(".clip-list-wide > li").mouseover(function(){
  	jQuery(this).addClass("over");
	});
	jQuery(".clip-list-wide > li").mouseout(function(){
  	jQuery(this).removeClass("over");
	});	
	*/
	
	//confirm on submitting remove-forms
	jQuery("form.remove-clip").submit( function() {
  return confirm("Ta bort detta klipp?");
	} );	
	
	//confirm on submitting remove-forms
	jQuery("a.remove-clip").click( function() {
  return confirm("Ta bort detta klipp?");
	} );
	
	//hide clips when clicking login
	//jQuery("a.thickbox").click( function() {
	//	jQuery(".wpv_video").hide();
	//},function(){
	//	jQuery(".wpv_video").show();
	//});

});


