$(document).ready(function () {
	
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") {
			anchor.target = "_blank";
		}
	}
	
	
	$('#logo').supersleight();
	$('#right_content div.hatched_box').supersleight();
	
	var height = parseInt($('#right_content').css('height'));
	/*
    if (height < '450') {
		$('#right_content').css('height', '450px');
	}
	*/
	$('a.box').colorbox();


/**********************Google Map for contact page*******************************************/

    var latlng = new google.maps.LatLng(51.360373,0.353735);
    var myOptions = {
        zoom: 15,
        center: latlng,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    
    var map = new google.maps.Map(document.getElementById("map"),
        myOptions);

    var marker = new google.maps.Marker({
        position: new google.maps.LatLng(51.360373, 0.353735),
        map: map
    });
                

/*********************************************************************************************/


});

