// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

$(document).ready(function () {
	$('#apply-lightbox a').click(function (e) {
		e.preventDefault();
		$('#contents').addClass('hide');
		
		$('#apply-lightbox-content').modal({onClose: function (dialog) {
			$('#contents').removeClass('hide');
			$.modal.close();
		}});
	});
});

$(window).load(function() {
	var total = $('#slider img').length;
	var rand = Math.floor(Math.random()*total);

	$('#slider').nivoSlider( {
		startSlide:rand,
		effect: 'fade',
		pauseTime: 6000,
		controlNav: false, // 1,2,3... navigation
		pauseOnHover: true // Stop animation while hovering
	});
});

