(function($){
    $.fn.extend({
        gtchometab: function(options) {
			var defaults = {
			};
            var options = $.extend(defaults, options);
            return this.each(function(){
                var obj = $(this);
				var path='ajax/';
				$(obj).click(function(){
					if($(obj).attr('id')=='gtcNewsTabTrigger'){
						file=path+'newshome.php';
						//alert(file);
						$.get(file, function(data){
							$('#gbcNewsTab').html(data);
						});
					}
					else{
						file=path+'videohome.php';
						//alert(file);
						$.get(file, function(data){
						
						  $('#gbcNewsTab').html(data);
						});
					}
					return false;
				});
            });
        }
    });
})(jQuery);