$('#slideshow_image').cycle({ 
    fx: 'zoom', 
    speed: 600, 
    timeout: 0, 
    next: '#slideshow_next', 
    prev: '#slideshow_prev' 
});

$(document).ready(function() {
	var id = '';
	
	$(".latest_design_image").mouseover(function() {
		id = $(this).attr("id");
		$('#t_'+id+':animated').stop(true, true);
		$('#i_'+id+':animated').stop(true, true);
		$("#i_" + id).attr("style", "background: url('" + global_config['home_url'] + "/style/images/latest_design_image_arrow_on.png');").hide();
		$("#t_" + id).fadeIn('fast');
		$("#i_" + id).fadeIn('fast');
	}).mouseout(function(){
		$(".arrow").removeAttr('style');
		$("#t_" + id).fadeOut('fast');
	});
});

$(function(){
	$('input:text').each(function(){
		var txtval = $(this).val();
		$(this).focus(function(){
			$(this).val('')
		});
		$(this).blur(function(){
			if($(this).val() == ""){
				$(this).val(txtval);
			}
		});
	});
	$('textarea').each(function(){
		var txtval = $(this).val();
		$(this).focus(function(){
			$(this).val('')
		});
		$(this).blur(function(){
			if($(this).val() == ""){
				$(this).val(txtval);
			}
		});
	});
});
