/*
========================================
===> [ Copyright © Swarm Media Ltd ] <==
========> All rights reserved. <========
========================================
#::- This code was written by Swarm -::#
========================================
====> RETAIN THIS COPYRIGHT NOTICE! <===
=======> http://www.swarmuk.com <=======
========================================
*/

$(document).ready(function(){

	$('.js_submit').click(function() {
		$(this).parents('form').submit();
		return false;
	});
	
	$('.js_back').click(function() {
		history.back();
		return false;
	});
	
	$('.js_jump').change(function() {

		if ($(this).val() != '') {
			window.location = $(this).val();
		}

		return false;
	});

	$('.js_hide').hide();

	$('.js_toggler').click(function() {
		togglerClass = '.' + $(this).attr('id');
		$(togglerClass).slideToggle();
		return false;
	});
	
	/* Custom. */
	
	$(this).delay(400,function(){
		$("#main_img").show(500);	
	});

	$(this).delay(900,function(){
		$("#content_box").slideDown(300);
	});
	
	$("#content_box_full").slideDown(300);
	
	$('#content_pager').pager('div.content_page', {
		navClass:'pager'
	});

});
