$(document).ready(function() {
	// Clear field value when clicked
	$(".has_default_value").focus(function(){
		if ( $(this).val() == $(this).attr("title") ) { 
			$(this).val("");
		}
	});
	$(".has_default_value").blur(function(){
		if ( $(this).val() == "" ) {
			$(this).val($(this).attr("title"));
		}
	});
	// ColorBox
	$('ul.prices a').colorbox({
		current: "{current} of {total}",
		height: "450px",
		opacity: 0.25,
		speed: 500,
		transition: "elastic",
		width: "650px"
	});
	// Flash Object
	$("#flash_content").flash({
		height: 266,
		src: '/flash/video.swf',
		width: 418,
		wmode: 'opaque'
	},{
		expressInstall: false,
		update: false,
		version: 8
	});
	// iFrame Object
	$('a.iframe').iframe();
	// LocalScroll
	$('.content').localScroll({
		duration: 500,
		hash: true
	});
	// Rollovers
	$(".rollover").hover(function() {
		this.src = this.src.replace("_off.", "_on.");
	},
	function(){
		this.src = this.src.replace("_on.", "_off.");
	});
	$(".rollover").each(function() {
		source_image = $(this).attr("src");
		rename_image = source_image.replace(/_off./gi, "_on.");
		$("<img>").attr("src", rename_image);
	});
});