/*
hayuta.net JS Document
Developed by Lionways.com
September 2011
*/

$().ready(function() {

	/*
	handle external links
	*/
	$('a[rel*=external]').click(function(){
		this.target='_blank';
	});
	
	/*
	add bullets to navigation menus
	*/
	$('.nav ul li').each(function(index) {
		if (index) $('<li class="sep">|</li>').insertBefore($(this));
  });
/*	$('.footer-nav ul li').each(function(index) {
		if (index) $('<li class="sep">|</li>').insertBefore($(this));
  });*/

	/*
	slideshows
	*/
	$('.slideshow').cycle({
		fx: 'fade'
	});

	/*
	lightbox
	*/
	$('.lightbox a').lightBox();

});

