$(document).ready(function(){
	$("div.b-thumb").hover(function() {
		var thumbOver = $(this).find("img").attr("src");
		$(this).css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});
		$(this).find("span").stop().fadeTo('slow', 0);
		$(this).find("a").stop().fadeTo('slow', 0);
	}, function() {
		$(this).find("span").stop().fadeTo('slow', 1).show();
		$(this).find("a").stop().fadeTo('slow', 1).show();
	});

    $("a[rel^='prettyPhoto']").prettyPhoto({
        animationSpeed: 'normal', /* fast/slow/normal */
        padding: 40, /* padding for each side of the picture */
        opacity: 0.85, /* Value betwee 0 and 1 */
        showTitle: true, /* true/false */
        allowresize: true, /* true/false */
        counter_separator_label: ' θη ', /* The separator for the gallery counter 1 "of" 2 */
        theme: 'dark_square' /* light_rounded / dark_rounded / light_square / dark_square */
    });

    $('#contacts_textarea').cuText({scrollbarWidth: 5, showArrows: false, resizable: false});

    $('.b-categs-links .b-less').click(function(){
        $('#categs').slideUp('slow');
        $('.b-categs-links .b-less').fadeOut('slow');
        $('.b-categs-links .b-more').fadeIn('slow');
        return false;
    });
    $('.b-categs-links .b-more').click(function(){
        $('#categs').slideDown('slow');
        $('.b-categs-links .b-less').fadeIn('slow');
        $('.b-categs-links .b-more').fadeOut('slow');
        return false;
    });
});

function blockSwitch(id){
    $('#'+id).toggle();
}
