jQuery(document).ready(function() {
	/* Gallery */
	jQuery('div.gallery a', '#content').fancybox({
		'titlePosition' : 'inside',
	});
	/* Machinery Hire Form */
	jQuery('a.btn_enquire', '#content').fancybox({
		'type'	: 'iframe',
		'width'	: 500,
		'height': 550
	});
	/* Cliackable Tables */
	jQuery('table.clickable tr', '#content').hover(
		function () {
		    jQuery(this).addClass('hover');
		  }, 
		  function () {
		    jQuery(this).removeClass('hover');
		  }
	).click(function() {
		var href = jQuery(this).find("a").attr("href");
		if(href) {
			window.location = href;
		}
	});
	/* Submenu Collapse */
	jQuery('li.current-cat', '#submenu').parent('ul.children').css('display','block');
});
