/* jQuery code */
$(document).ready(function() {
	$('#headerMenu ul li').click(function(e){
		location.href = $(this).find('a').attr('href');
	});
	
	var list_item = $('.block_items ul li');
	list_item.click(function(e){
		location.href = $(this).find('a').attr('href');
	});
	
	list_item.parent().find('.active').prepend('&raquo; ');
	
	$('#content').hide().slideDown('slow');
	
	$('div.block_items ul li:odd').addClass('o');
	$('div.block_items ul li:even').addClass('e');
	
	/* Lightbox effect */
	$('a[rel*=lightbox]').lightBox();

	/* Slider */
	$('#gallery').cycle({ 
	    fx:     'fade', 
	    timeout: 2000 
	});
});
