// JavaScript Document

$(document).ready(function() {

$('#search-clear').show();
$('#search').hide();

$('#search-clear').focus(function() {
    $('#search-clear').hide();
    $('#search').show();
    $('#search').focus();
});
$('#search').blur(function() {
    if($('#search').val() == '') {
        $('#search-clear').show();
        $('#search').hide();
    }
});


//Tab content box Script
$('#tabContent_0').show();
$('#tabArea li:first').toggleClass("current"); 

var activetabcontent = 0;

var myRowsImage = $('#tabArea li').click(function(){ 
	$('#tabArea li').removeClass("current");
	$(this).toggleClass("current");  
	(myRowsImage.index(this));
	$("#tabContent_" + activetabcontent).hide();
	$('#tabContent_' + myRowsImage.index(this) ).show();
	activetabcontent = myRowsImage.index(this);
 });

$('#emailclick').click(function() {
                         $('#sendtoafriend').toggle(400);
                        return false;  }); 
$('#emailfooterclick').click(function() {
                         $('#sendtoafriend').toggle(400);
						 var targetOffset = $target.offset().top;
    					$('html,body').animate({scrollTop: targetOffset}, 1000);
						return false;  });
$('#emailclose').click(function() {
                         $('#sendtoafriend').toggle(400);
                        return false;  }); 

$('#tabAreanoimage li:first').toggleClass("current"); 

var myRows = $('#tabAreanoimage li').click(function(){ 
	$('#tabAreanoimage li').removeClass("current");
	$(this).toggleClass("current");  
	(myRows.index(this));
	$("#tabContent_" + activetabcontent).hide();
	$('#tabContent_' + myRows.index(this) ).show();
	activetabcontent = myRows.index(this);
 });





});

function openthebox() {

$(document).ready(function() {$('#sendtoafriend').toggle(400); return false; });

}



