jQuery(document).ready(function($) {
	var tempUrl = String(passingName.templateUrl);
	$('ul#nav li:nth-child(3)').css('margin-left', '315px');
	
	$("h2.widgettitle:contains('UKSA')").css('display', 'none');

	var $currUL = null
	$('.sub').hide();
	$('#upcominggigswidget-3 ul a').click(function() {
		$currUL = $(this).parent().children('ul');
		if ($currUL.is(':hidden')) {
			$currUL.addClass('down');
			$currUL.slideDown(120).show();
		} else {
			$currUL.slideUp(200);
			$currUL.removeClass('down');
		}
	});
	
	$("#mediaBox img").hover(function() {
		$(this).attr('src', $(this).attr('src').replace('B.', 'GLO.'));
	}, function() {
		$(this).attr('src', $(this).attr('src').replace('GLO.', 'B.'));
	});
	
	fb = new Image();
    fb.src = tempUrl + "/images/facbGLO.png";
    my = new Image();
    my.src = tempUrl + "/images/myspGLO.png";
	yt = new Image();
    yt.src = tempUrl + "/images/ytbeGLO.png";
	
});
