(function($)
    {
        $(function() {


            $(".ajax").colorbox(
            {
                href: function(){
                    var url = $(this).attr('href') + '?ajax=1';
                    return url;
                },
                width:"60%",
                height:"80%",
                iframe:true
            }
            );

            $('a.slide').click(function() {
                var item = $(this).attr('href');
                item = item.replace('#', '');
                $('div.' + item).show();

            });
		
        });
    })(jQuery);
