$(function() {
	$("#contactus").click(function() {
		$("#dialog").dialog("destroy");
		$("#dialog-modal").dialog( {
			stackfix : true,
			height : 100,
			modal : true,
			closeOnEscape : true,
			stack : true
		});
	});

	$("#dialog-modal").bind('dialogclose', function(event, ui) {
		$("#dialog-modal").dialog("destroy");
	});

	$("#dialog-modal").not(':isOpen').hide();
	
	$("#reset").click(function() {
		$("form")[0].reset();
	});
	
	$.preloadCssImages();

	$('#CustomSlideshow').slideshow( {
		width : 480, // width in px
		height : 360, // height in px
		history : true, // change/check location hash
		index : 0, // start from frame number N
		time : 3000, // time out beetwen (ms)
		title : false, // show title
		panel : true, // show controls panel
		loop : false, // stop looping
		effect : 'left', // aviable fade, scrollUp/Down/Left/Right, zoom,
							// zoomFade, zoomTL, zoomBR, growX, growY, random
		effecttime : 'fast', // aviable fast,slow,normal and any valid fx speed
							// value
		nextclick : true, // bind content click next slide
		playframe : false, // show frame "Play Now!"
		imgresize : true, // resize image to slideshow window
		help : '',
		controls : { // show/hide controls elements
			'hide' : false, // show controls bar on mouse hover
			'first' : true, // goto first frame
			'prev' : true, // goto previouse frame (if it first go to last)
			'play' : true, // play slideshow
			'next' : true, // goto next frame (if it last go to first)
			'last' : true, // goto last frame
			'help' : false, // show help message
			'counter' : true // show slide counter
		}
	});
});