    // JFlow Slider
            $(document).ready(function(){
                $("#slider").jFlow({
                    slides: "#slider_img",
                    controller: ".jFlowControl", // must be class, use . sign
                    slideWrapper : "#jFlowSlide", // must be id, use # sign
                    selectedWrapper: "jFlowSelected",  // just pure text, no sign
                    width: "588px",
                    height: "245px",
                    easing: "swing",
                    duration: 700,
                    prev: ".jFlowPrev", // must be class, use . sign
                    next: ".jFlowNext" // must be class, use . sign
                });
            });


	// Viewer Portfolio
	// This code allow to show the image in full size
	$(document).ready(function(){
		$(".viewer").click(function() {
			$('.image').toggleClass('imageshow');
			$('.viewer span').toggleClass("close");
			return false;
		});
	});
			

    // VALIDATION CONTACT FORM //
    $(document).ready(function() {
        $("#contactForm").validate();
        $("#reply-form").validate();
    });