$(document).ready(function() 
	{ 
        $('ul.sf-menu').superfish(); 
    }); 
	
	var profiles =
	{
		mediaPlayer:
		{
			height:90,
			width:300,
			toolbar:0,
			scrollbars:0,
			status:0,
			resizable:0,
			createnew:0,
			center:1
		},
	};
	
   	$(function()
	{
   		$(".popupwindow").popupwindow(profiles);
   	});		

	$(document).ready(function()
	{
		$(".fader").fadeTo("fast", 0.6);
		
		$(".fader").hover(function(){
			$(this).fadeTo("fast", 1.0); 
			},function(){
			$(this).fadeTo("fast", 0.6); 
		});
	});
	
	$(document).ready(function()
	{
		$(".gigpress-table.archive tbody.vevent").fadeTo("fast", 0.6);

	});
