/*--------------------------------------------------------------
# Developer     :   Arif Cakiroglu                              #
# Theme         :   Pozitif Bilgi  & Teknoloji                  #
# License       :   http://dev.arifcakiroglu.com/license        #
# Website       :   http://www.arifcakiroglu.com                #
# Start Date    :   16.08.2010                                  #
# Update        :   16.08.2010                                  #
# Copyright (C) 2010-2011  arifcakiroglu.com                    #
---------------------------------------------------------------*/


	function creditCard(deger) {
		var status = deger;
		if (status == "4") {
			$('.paymentBar').css({opacity: 0, visibility: "visible"}).animate({opacity: 1},'fast');

            $('.okk').addClass("active");
		}else{
			$('.paymentBar').css("visibility","hidden");
            $('.okk').removeClass("active");

		}
	}
    

	function cardName(deger) {
		var status = deger;
        $('#cardBank').html(deger);
	}
    
	function adsoyadgoster() {
        $('#adsoyaddiv').fadeIn();
	}
    
    


