$(document).ready(function(){

	$('a[rel=external]').click(function()
	{
		window.open(this.href);
	
		return false;
	});	
	
	
	$('#menu > li').hover(function()
	{
		$(this).addClass('hover');
		$('ul', this).show();
	}, function()
	{
		$(this).removeClass('hover');
		$('ul', this).hide();
	});
	
	
	if($('#mycarousel').length)
	{		
		$('#mycarousel').jcarousel(
		{
			vertical: true,
			scroll: 5,
			wrap: null
		});
	}
	
	if($('#slider').length)
	{	
		$('#slider ul.items').cycle({
			 pager: '#slider #cycleNav'
		});
	}
	
});
