


function send_message() {
	var data=$('#contact').serialize();
	var url=prefix+"sendmessage.php";
	$.post(url,data,function(answer) {
							 $('#modal-contact').jqmHide();
							 if (answer=="Captcha code wrong.") {
								 $('#captcha').attr('src','securimage/securimage_show.php?' + Math.random());
								 $('#captcha-modal').jqmShow();
							 }
							 else if (answer=="Message sent.") {
								 $('#send-modal').jqmShow();
							 }
							 else {
								 $('#send-error-modal').jqmShow();
								 
							 }
							 });
}

function toggle_streetview(){
	$('#map-div').html('<iframe width="256" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com.au/maps/sv?cbp=12,118.73468383226255,,0,-1.5000000000000013&amp;cbll=-27.446361,153.122943&amp;panoid=&amp;v=1&amp;hl=en&amp;gl=au"></iframe><br /><small><a href="http://maps.google.com.au/maps?oe=utf-8&amp;client=firefox-a&amp;ie=UTF8&amp;q=Unit+2+%2F+24+Violet+Street+HEMMANT+Qld+4174&amp;fb=1&amp;split=1&amp;gl=au&amp;cid=0,0,6897628817146795895&amp;ei=J7DmSa6AFc2GkAXu-OyeBw&amp;ll=-27.446495,153.123291&amp;spn=0.006295,0.006295&amp;layer=c&amp;cbll=-27.446361,153.122943&amp;panoid=X8g5rr-8fQZ2KHOS_qXxBw&amp;cbp=12,118.73468383226255,,0,-1.5000000000000013&amp;source=embed" style="color:#0000FF;text-align:left">View Larger Map</a> | <a href="#" onclick="toggle_map(); return false;">View map</a></small>');				  
}

function toggle_map(){
	$('#map-div').html('<iframe width="256" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com.au/maps?oe=utf-8&amp;client=firefox-a&amp;ie=UTF8&amp;q=Unit+2+%2F+24+Violet+Street+HEMMANT+Qld+4174&amp;fb=1&amp;split=1&amp;gl=au&amp;cid=0,0,6897628817146795895&amp;ei=J7DmSa6AFc2GkAXu-OyeBw&amp;ll=-27.446495,153.123291&amp;spn=0.006295,0.006295&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com.au/maps?oe=utf-8&amp;client=firefox-a&amp;ie=UTF8&amp;q=Unit+2+%2F+24+Violet+Street+HEMMANT+Qld+4174&amp;fb=1&amp;split=1&amp;gl=au&amp;cid=0,0,6897628817146795895&amp;ei=J7DmSa6AFc2GkAXu-OyeBw&amp;ll=-27.446495,153.123291&amp;spn=0.006295,0.006295&amp;source=embed" style="color:#0000FF;text-align:left">View Larger Map</a> | <a href="#" onclick="toggle_streetview(); return false;">View Streetview</a></small>');				  
}


$(function() {
	//start the slideshow
	$('.slideshow').cycle({
	fx: 'fade',
	speed:  slideshow_fading_speed,
	timeout: slideshow_delay
	});
	
	// initialize modal dialogs
	 $('.dialog').jqm({modal:true})
	 $('#flashmovie').hide();
	// add click function for menu item contact
	$('#menu_1').click(function() {
								$('#modal-contact').jqmShow();
								//$('#flashmovie').hide();
								$('#flashmovie').css('visibility','hidden');

								});
	$('#captcha-refresh').click(function() {
								$('#captcha').attr('src','securimage/securimage_show.php?' + Math.random());
										});
	 
	 // initialize flash logo
	$('.flash').flash(
        { src: prefix+'logo.swf',
          width: 100,
		  loop:false,
		  id:'flashmovie',
          height: 120 },
        { version: 5 }
    );

	 // initialize streetview button
	 $('#map-change-view').click(function() {
										  toggle_streetview();
										  });
	 
});
