
// shows the slickbox on clicking the noted link 

$(document).ready(function() {

	// teaer
	$('#home-nav-primary li').hover(function() {
		$('div.teaser', this).show();
	}, function() {
		$('div.teaser', this).hide();
	});
	
	// video
	$('#play').click(function() {
		$('#flashcontent').show();
		$('#close').show();
		$('#video').css('z-index','10');
	});

	$('#close').click(function() {
		$('#flashcontent').hide();
		$(this).hide();
		$('#video').css('z-index','1');
	});
	
});



