$(function(){
    $('.blink').
        focus(function() {
            if(this.title==this.value) {
                this.value = '';
            }
        }).
        blur(function(){
            if(this.value=='') {
                this.value = this.title;
            }
        });
   
	
	$('.main .tabs-holder a').click(function(){
		var content = $('.main .tab-container');
		var id = $(this).attr('href');
		
		
		// Global Removing Active State
		$('.main .tabs-holder a').removeClass('active');
		content.hide();
		
		$(this).addClass('active');
		$(id).show();
		
		return false;
	});      

})

