/*############### PLACE IMAGE-HOLDER AROUND THE LOGO IMAGE ###############################*/

$(document).ready(function(){
   $("#inner_pg_wrap a#logo_img").prepend("<span></span>");
});

/*############## SLIDING TAB CONTENT IN MAIN_COL ###################################*/
$(document).ready(function(){
		$("#tab_gallery").addClass('open');

        $("#tab_gallery").mouseover(function() {

		   $(this).addClass('open').siblings().removeClass('open');

                $(".tab_content").animate({

                        marginLeft: "0px"

                }, 500);

        });

        $("#tab_guests").mouseover(function() {

		   $(this).addClass('open').siblings().removeClass('open');

                $(".tab_content").animate({

                        marginLeft: "-590px"

                }, 500);

        });

        $("#tab_blog").mouseover(function() {

		   $(this).addClass('open').siblings().removeClass('open');

                $(".tab_content").animate({

                        marginLeft: "-1180px"

                }, 500);

        });

});

/*#################### SIDEBAR_TOP TABS ################################*/
$(document).ready(function(){
		$(".sidebar li.widget_categories").addClass('open');
		$(".sidebar .widget_content div:gt(0)").hide();
		
        $(".sidebar li.widget_categories").mouseover(function() {

		   $(this).addClass('open').siblings().removeClass('open');

                $(".sidebar div.widget_categories").show().siblings().hide();
		return false;
		});

        $(".sidebar li.widget_recentposts").mouseover(function() {

		   $(this).addClass('open').siblings().removeClass('open');

                $(".sidebar div.widget_recentposts").show().siblings().hide();
		return false;
        });

        $(".sidebar li.widget_archives").mouseover(function() {

		   $(this).addClass('open').siblings().removeClass('open');

                $(".sidebar div.widget_archives").show().siblings().hide();
		return false;
        });

});
