
function send_message() {
	var data=$('#contact').serialize();
	var url=prefix+"sendmessage.php";
	$.post(url,data,function(answer) {
							 if (answer=="Captcha code wrong.") {
								 $('#captcha').attr('src','securimage/securimage_show.php?' + Math.random());
								 modal_dialog_show('You entered an incorrect validation code. Please try again.');
							 }
							 else if (answer=="Message sent.") {
								 modal_dialog_show('Message sent.');
								 $('#modal_db').jqmHide();
							 }
							 else {
								 modal_dialog_show('An emailing error occured.');
								 $('#modal_db').jqmHide();
								 
							 }
							 });
}
/*
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 show_slide_text() {
	$(this).find('.slidetext').animate({
									   height:"25px",
									   marginTop:"-32px"
									   },500);
}

function modal_dialog_show(text) {
	$('#modal_dialog').html(text+'<br /><a href="javascript:void(0)" onclick="$(\'#modal_dialog\').jqmHide();">Close</a>');							
	$('#modal_dialog').jqmShow();
	

}

function modal_article_show(product_id) {
	var data='&id=Article_view';
	var url=prefix+"dialogs/0/"+product_id;
	$('#modal_db').html('');
	$.post(url,data,function(answer) {
							 $('#modal_db').html(answer);							 
							 $('.article-view a').fancyzoom({showoverlay:true});
							 });
	var theHeight=$('#modal_db').css('height');
	$('#modal_db').css('height','0px');
	$('#modal_db').jqmShow();
	$('#modal_db').animate({
		height:'450px'},750
		);
	

}

function modal_collection_show(product_id) {
	var data='&id=Collection_View';
	var url=prefix+"dialogs/0/"+product_id;
	$('#modal_db').html('');
	$.post(url,data,function(answer) {
							 $('#modal_db').html(answer);							 
							 $('.article-view a').fancyzoom({showoverlay:true});
							 });
	var theHeight=$('#modal_db').css('height');
	$('#modal_db').css('height','0px');
	$('#modal_db').jqmShow();
	$('#modal_db').animate({
		height:'450px'},750
		);
	

}

function modal_db_show(id) {
	var data='&id='+id;
	var url=prefix+"dialogs";
	$('#modal_db').html('');
	$.post(url,data,function(answer) {
							 $('#modal_db').html(answer);							 
							 
							 });
	$('#modal_db').css('height','0px');
	$('#modal_db').jqmShow();
	$('#modal_db').animate({
		height:'449px'},750
		);
}

function captcha_refresh() {
		$('#captcha').attr('src','securimage/securimage_show.php?' + Math.random());
}

$(function() {
	//start the slideshow
	$('.slideshow').cycle({
	fx: 'fade',
	speed:  slideshow_fading_speed,
	timeout: slideshow_delay,
	after: show_slide_text,
	before: function(){
			$(this).find('.slidetext').css({"height":"0px","margin-top":"-7px"}).hide();}
	});
	
	// initialize modal dialogs
	 $('.dialog').jqm({modal:true})
	 $('#flashmovie').hide();


	 
	 // 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();
										  });*/
	$.fn.fancyzoom.defaultsOptions.imgDir=prefix+'images/fancyzoom/'; 
	$('#featured').jcarousel({wrap:"both"});
});
