// JavaScript Document

jQuery(document).ready(function ()
{

	
	jQuery(".home_right_quote").click( function () {
		window.location.href=jQuery(this).attr("rel");
		
	});
	
	jQuery(".enquirybutton, .enquirybutton-small").click(function(e) {
        window.location.href = jQuery(this).children("a").attr("href");
		
    });

	jQuery(".left_highlight_box ").click(function(e) {
        window.location.href = jQuery(this).find("a").attr("href");
		
    });
	
	
});
