	// #################################
	// Search form
	// #################################
	$(function() {
		$(" input.textboxsearch ").focus(function(){
			$(this).parent().addClass("search-formhover");
			}).focusout(function(){
			 $(this).parent().removeClass("search-formhover");
		 });
		$(".textboxsearch_header").focus(function(){
			$(this).parent().addClass("search_header_over");	
			$(this).parent().animate({width:"175px"},300);
		}).focusout(function(){
			$(this).parent().removeClass("search_header_over");
			$(this).parent().animate({width:"120px"},300);
		});
	});	
	// #################################
	// ZOOM PORTFOLIO HOVER
	// #################################
	$(function() {
		$("li.list_box a").hover(function(){							   
			$(this).children(".back").fadeIn(200);
		},function() {
			$(this).children(".back").fadeOut(100);
		});
		
		$("ul#list_wrap,ul#list_wrap_col2").find("li.listbox_ufullimg").hover(function(){							   
			$(this).find(".back").fadeIn(200);
			$(this).find(".icozoom").animate({ left:"33%"}, 300 );
			$(this).find(".icomore").animate({ right:"33%"}, 300 );
		},function() {
			$(this).find(".back").fadeOut(100);
			$(this).find(".icozoom").animate({ left:"0"}, 200 );
			$(this).find(".icomore").animate({ right:"0"}, 200 );
		});
		$("ul#list_wrap_col2_c1").find("li.listbox_ufullimg").hover(function(){							   
			$(this).find(".back").fadeIn(200);
			$(this).find(".icozoom").animate({ left:"40%"}, 300 );
			$(this).find(".icomore").animate({ right:"40%"}, 300 );
		},function() {
			$(this).find(".back").fadeOut(100);
			$(this).find(".icozoom").animate({ left:"0"}, 200 );
			$(this).find(".icomore").animate({ right:"0"}, 200 );
		});
	});	
	// #################################
	// shortcode image
	// #################################
	$(function() {
		$('body').ready(function(){
			$('.imageshover .imageshoverp').fadeOut(0);
			});
		$(".imageshover").hover(function(){
			$(this).find('.imageshoverp').fadeIn(100);
		},function(){
		$(this).find('.imageshoverp').fadeOut(100);
		});	
	});	
	// #################################
	// Show - Hide
	// ################################	
	$(function() {
		// Respond form
		$(".respondbtn").click(function () {
			$("#respondwrap").slideToggle(500, function() {
				if ($(this).is(":visible")) {
					$('html, body').animate({scrollTop: $(this).offset().top}, 500)
				}
			});
		});
		// Shortcode  Fold - Unfold
		$(".job_title").click(function () {
			$(this).siblings('.job_desc').slideToggle(500, function() {
				if ($(this).is(":visible")) {
					$('html, body').animate({scrollTop: $(this).offset().top}, 500)
				}
			});
		});
		// Footer Contact info.
		$("#footer_trggle").click(function () {
			$("#footunder").slideToggle(500, function() {
				if ($(this).is(":visible")) {
					$('html, body').animate({scrollTop: $(this).offset().top}, 300)
					$("#footer_trggle").removeClass('footer_open').addClass('footer_close');
					//$('html, body').animate({scrollTop:$('html, body').scrollTop() +150}, "slow");
				}else{
					$("#footer_trggle").removeClass('footer_close').addClass('footer_open');
				}
			});
		});
	});
	// #################################
	// Back Top
	// ################################	
	/**/
	$(document).ready(function(){
		$("#top").hide();
		$(function () {
			$(window).scroll(function(){
				if ($(window).scrollTop()>100){
					$("#top").fadeIn(300);
				}else{
					$("#top").fadeOut(300);
				}
			});
			$("#top").click(function(){
				$('body,html').animate({scrollTop:0},500);
				return false;
			});
		});
	});	
