$(document).ready(function() {
	
	$(this).bind("contextmenu", function(e) {
		e.preventDefault();
		alert("All images "+unescape("%A9")+" Copyright 2011 JD Photography.");
	});
	
	$('.notcurrent').mouseover(function() {
									   
		$(this).css("background-image", "url(http://www.photographybyjd.co.uk/public/themes/jdphoto/images/mbg-over.png)");
		
	});	
	
	$('.notcurrent').mouseout(function() {
									   
		$(this).css("background-image", "url(http://www.photographybyjd.co.uk/public/themes/jdphoto/images/mbg-out.png)");
		
	});	
	
	$('.submitbtn').mouseover(function() {
									   
		$(this).css("background-image", "url(http://www.photographybyjd.co.uk/public/themes/jdphoto/images/btnbg-over.png)");
		
	});	
	
	$('.submitbtn').mouseout(function() {
									   
		$(this).css("background-image", "url(http://www.photographybyjd.co.uk/public/themes/jdphoto/images/btnbg-out.png)");
		
	});	
	
	$('.ispagination_link').click(function(e) {
		
		e.preventDefault();
		
		$('.ispagination_link').removeClass('selected');
		$(this).addClass('selected');
		
		var nth = Math.round($(this).html()-1);
		
		$('.isgallery').slideUp('fast').eq(nth).slideDown('fast');
		
	});
	
	$('.ispagination_link').filter(':first').click();
	
	$("a[rel='isgallery']").colorbox({photo:true});

	$('.open_submenu').click(function(e) {
		
		e.preventDefault();
		
		$(this).next().slideToggle('fast');
		
	});
	
	$('.open_submenu').each(function() {
		
		if ( $(this).next().children().hasClass('subcurrent') ) $(this).click();
		
	});
	
	$('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});

});
